home *** CD-ROM | disk | FTP | other *** search
/ The PC-SIG Library 10 / The PC-Sig Library - Shareware for the IBM PC and Compatibles (PC-SIG)(Tenth Edition Disks 1-2804)(1991).iso / PC_SIGCD / 11 / 0 / DISK1105.ZIP / DATA / P1903-01.IN < prev    next >
Text File  |  1988-06-01  |  2KB  |  41 lines

  1.      '**********************************************************
  2.      '
  3.      '         A.B.C. Manufacturing Company
  4.      '
  5.      '**********************************************************
  6.      '             production cost
  7.      '..........................................................
  8.         COST #100=1.00, #200=1.00; '....$1.00 per unit
  9.  
  10.       APPLY   #100/Production Cost
  11.          TO           #1=14.0,     #11=18.0
  12.                       #2=17.0,     #12=22.0
  13.                       #3=17.0,     #13=22.0;
  14.  
  15.       APPLY   #200/Inventory Cost
  16.          TO           #1=3.0,     #11=3.0
  17.                       #2=2.0,     #12=2.0
  18.                       #3=1.0,     #13=1.0;
  19.      '..........................................................
  20.      ' the Production EQUATIONS can be expressed as
  21.      '..........................................................
  22.                 EQUATIONS
  23.      priod1      #1  +  #11  +  #50
  24.             <GE> #51/demand period.1;
  25.  
  26.      priod2      #1  +  #11  +  #2  +  #12  +  #50
  27.             <GE> #51 +  #52/demand period.2;
  28.  
  29.      priod3      #1  +  #11  +  #2  +  #12  +  #3  +  #13  +  #50
  30.             <GE> #51 +  #52  +  #53/demand period.3;
  31.  
  32.         SET      #50=15.0;
  33.         MINIMUM  #51=60.0,  #52=80.0,  #53=140.0;
  34.      '..........................................................
  35.      '     The Production capacity LIMITS
  36.      '..........................................................
  37.         MAXIMUM #1=100,         #11=20
  38.                 #2=100,         #12=10
  39.                 #3= 60,         #13=20;
  40. 
  41.